home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / bisonpcb / tgram.att < prev    next >
Text File  |  1987-09-17  |  371b  |  24 lines

  1.  
  2. #ifndef YYLTYPE
  3. typedef
  4.   struct yyltype
  5.     {
  6.       int timestamp;
  7.       int first_line;
  8.       int first_column;
  9.       int last_line;
  10.       int last_column;
  11.       char *text;
  12.    }
  13.   yyltype;
  14.  
  15. #define YYLTYPE yyltype
  16. #endif
  17.  
  18. #define    YYACCEPT    return(0)
  19. #define    YYABORT    return(1)
  20. #define    YYERROR    return(1)
  21. #ifndef YYSTYPE
  22. #define YYSTYPE int
  23. #endif
  24.